home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
- #include <objc/objc.h>
- #include <objam/ExecList.h>
-
-
- void testexeclist(void)
- {
- id myList;
-
- if(myList=[ExecList new])
- {
- printf("Pointer to exec list: %d\n", (int)[myList execList]);
- [myList free];
- }
- else puts("Error creating ExecList object.");
- return;
- }
-
-
- int main(void)
- {
- testexeclist();
- return 0;
- }
-